@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Tiro+Bangla:ital@0;1&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100vw;
    height: 100vh;
    font-family: "Poppins", sans-serif;
    font-family: "Anek Bangla", sans-serif;
}

.msg {
    font-size: 2em;
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    max-width: 100%;
    align-items: center;
    background-color: #b00606;
}

.text1 {
    color: #115d33;
    text-shadow: 0.5px 0.5px #ffffff;
    font-size: 2em;
    font-weight: 800;
    padding-bottom: 0.5em;
    position: relative;
    /*   shorthand animation property: name | duration | iteration count */
    animation-name: text;
    animation-duration: 4s;
}

@keyframes text {
    0% {
        margin-left: -40em;
    }

    100% {
        margin-left: 0em;
    }
}

.drawer-list {
    position: fixed;
    z-index: 9999;
    right: 0;
    top: 0;
    height: 100vh;
    width: 60%;
    transform: translate(100vw, 0);
    /* ie workaround */
    -ms-transform: translatex(-100vw);
    box-sizing: border-box;
    pointer-events: none;
    padding-top: 2.6em;
    transition: width 475ms ease-out, transform 450ms ease, border-radius 0.8s 0.1s ease;
    border-bottom-left-radius: 100vw;
    background-color: #115d33;
}

.drawer-list ul {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: auto;
    overflow-x: hidden;
    pointer-events: auto;
    margin-top: 0.3em;
}

.drawer-list li {
    list-style: none;
    text-transform: uppercase;
    pointer-events: auto;
    white-space: nowrap;
    box-sizing: border-box;
    transform: translateX(100vw);
    /* ie workaround */
    -ms-transform: translateX(-100vw);
}

.drawer-list li:last-child {
    margin-bottom: 1em;
}

.drawer-list li a {
    text-decoration: none;
    color: #ffffff;
    text-shadow: 1px 1px #000;
    text-align: right;
    display: block;
    padding: 0.2em;
    font-size: 1em;
    letter-spacing: 5px;
    transition: all 0.5s ease-in-out;
}

.drawer-list li a:hover {
    cursor: pointer;
    letter-spacing: 0;
    color: #000;
    background: #b00606;
    text-shadow: 1px 1px #ffffff;
}

.menu-tab {
    display: inline-block;
}

.menu-tab li {
    letter-spacing: 0;
    font-size: 1em;
    transition: all 5s ease-in-out;
}

.menu-tab li:hover a {
    transform: rotateX(360deg);
    background: transparent;
}

.menu-tab>:last-child {
    padding-top: 30px;
}

input.hamburger {
    display: none;
}

input.hamburger:checked~.drawer-list {
    transform: translateX(0);
    border-bottom-left-radius: 0;
}

input.hamburger:checked~.drawer-list li {
    transform: translateX(0);
}

input.hamburger:checked~.drawer-list li:nth-child(1) {
    transition: transform 1s 0.08s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li:nth-child(2) {
    transition: transform 1s 0.16s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li:nth-child(3) {
    transition: transform 1s 0.24s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li:nth-child(4) {
    transition: transform 1s 0.32s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li:nth-child(5) {
    transition: transform 1s 0.4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li:nth-child(6) {
    transition: transform 1s 0.48s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li:nth-child(7) {
    transition: transform 1s 0.56s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li:nth-child(8) {
    transition: transform 1s 0.64s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked~.drawer-list li a {
    padding-right: 0.5em;
}

input.hamburger:checked~label>i {
    background-color: transparent;
    transform: rotate(90deg);
}

input.hamburger:checked~label>i:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

input.hamburger:checked~label>i:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

input.hamburger:checked~label close {
    color: #ffffff;
    width: 100%;

}

input.hamburger:checked~label open {
    color: #ffffff;
    width: 0;

}

label.hamburger {
    z-index: 99999;
    display: block;
    height: 50px;
    width: 50px;
    position: fixed;
    top: 0.5em;
    right: 2em;
}

label.hamburger:hover {
    cursor: pointer;
}

label.hamburger text close,
label.hamburger text open {
    text-transform: uppercase;
    font-size: 0.4em;
    text-align: center;
    position: absolute;
    transform: translateY(50px);
    text-align: center;
    overflow: hidden;
    transition: width 0.25s 0.35s, color 0.45s 0.35s;
}

label.hamburger text close {
    color: #ffffff;
    right: 0;
    width: 0;
}

label.hamburger text open {
    color: #ffffff;
    width: 100%;
}

label.hamburger>i {
    position: absolute;
    width: 100%;
    height: 2px;
    top: 50%;
    background-color: #ffffff;
    pointer-events: auto;
    transition-duration: 0.35s;
    transition-delay: 0.35s;
}

label.hamburger>i:before,
label.hamburger>i:after {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    left: 50%;
    background-color: #ffffff;
    content: "";
    transition: transform 0.35s;
    transform-origin: 50% 50%;
}

label.hamburger>i:before {
    transform: translate(-50%, -14px);
}

label.hamburger>i:after {
    transform: translate(-50%, 14px);
}

.note {
    padding: 1em;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#para {
    position: relative;
    padding: 1.2em;
    text-align: justify;
    color: #ffffff;
    text-shadow: 2px 2px #000;
    border: 1px solid #ccc;
    box-shadow: 1px 1px 5px 2px #000;
    border-radius: 0.5em;
    font-size: 0.7em;
}

/* PDF Section============================== */

.pdf-books {
    width: 100%;
    margin: 0;
    padding: 1em 4em;
    padding-bottom: 2em;
    background-color: #b00606;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2em;
}

.book-container {
    width: 100%;
    height: 120vh;
    padding: 1em;
    background-color: #115d33;
    border-radius: 0.5em;
    box-shadow: 1px 1px 5px 2px #000;
    text-align: center;
    overflow: hidden;
}

.title {
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.title h2 {
    color: #ffffff;
    margin-bottom: 1em;
    font-size: 2em;
}

.title h2::after {
    content: " ";
    display: block;
    margin: auto;
    width: 0;
    height: 3px;
    background-color: #ffffff;
    transition: 0.5s ease-in-out;
}

.title h2:hover::after {
    width: 100%;
}

.book-container iframe {
    border-radius: 0.5em;
    width: 95%;
    height: 98vh;
}





/*******************************************************************************************/
.footer {
    width: 100%;
    padding: 1.5em 2em;
    background-color: #115d33;
    color: #ffffff;
}

.contact_inner {
    border-radius: 0.5em;
    background-color: #b00606;
    box-shadow: 2px 2px 10px 5px #000000;
}

.row-line h3 {
    text-align: center;
    font-size: 2.5em;
    text-shadow: 2px 2px #000;
    text-transform: uppercase;
}

.row-line p {
    padding-top: 0.5em;
    text-align: center;
    font-size: 1.3em;
    text-shadow: 2px 2px #000;
    text-transform: uppercase;
}

.contact_form_inner {
    padding: 1em 0.5em;
    display: flex;
    justify-content: space-around;
}

.contact_field {
    margin-top: 2em;
    display: flex;
    flex-direction: column;
    width: 40%;
}

.contact_field input,
.contact_field textarea {
    background-color: #b00606;
    color: #fff;
}

.contact_field input::placeholder,
.contact_field textarea::placeholder {
    color: #ffffff;
    font-weight: 500;
}

.contact_field .form-control {
    margin-bottom: 2em;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #ccc;
}

.contact_field .form-control:focus {
    box-shadow: none;
    outline: none;
    border-bottom: 2px solid #00ff73;
}

.contact_field .form-control::placeholder {
    font-size: 1em;
    letter-spacing: 1px;
}

button.contact_form_submit {
    background: linear-gradient(90deg, #b00606, #115d33, #b00606);
    border: none;
    color: #ffffff;
    text-shadow: 1px 1px #000;
    padding: 0.5em 0;
    border-radius: 35px;
    cursor: pointer;
    font-size: 1em;
}

.contact_info_sec {
    color: #ffffff;
    text-shadow: 2px 2px #000;
    text-align: center;
    background: linear-gradient(90deg, #b00606, #115d33, #b00606);
    font-size: 1em;
    font-weight: 500;
    padding: 0.5em 5em;
    border-radius: 25px;
}

.contact_info_sec h4 {
    font-size: 1.5em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info_single {
    margin: 25px 0px;
}

.info_single i {
    margin-right: 10px;
}

.info_single span {
    font-size: 1em;
    letter-spacing: 1px;
}

.social_item_inner {
    background-color: #115d33;
    height: 2.5em;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.social_item_inner li {
    list-style: none;
    transition: all 0.5s ease-in-out;
}

.footer-tab li a i {
    font-size: 1.5em;
    color: #ffffff;

}

.social_item_inner li:hover {
    transform: rotateY(360deg)
}

.last {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1em;
    margin-bottom: -1em;
}

.last>span {
    padding: 0.5em 2em;
    border-radius: 0.2em;
    box-shadow: inset 0.5px 0.5px 2px 0.5px #ffffff;
    text-align: center;
    color: #ffffff;
}

.last span a {
    text-decoration: none;
    color: #ffffff;
}


/* Responsive Codes--------------------------------- */

@media only screen and (min-width:200px) and (max-width:310px) {
    .msg {
        font-size: 1.5em;
        height: fit-content;
    }

    label.hamburger {
        top: 1em;
        right: 1em;
        height: 10px;
        width: 28px;
    }

    label.hamburger>i:before {
        transform: translate(-50%, -8px);
    }

    label.hamburger>i:after {
        transform: translate(-50%, 8px);
    }

    label.hamburger text close,
    label.hamburger text open {
        font-size: 0.4em;
        transform: translateY(20px);
    }

    .drawer-list {
        width: 100%;
        padding-top: 3em;
    }

    .drawer-list li a {
        text-align: end;
        font-size: 1.15em;
    }

    .social_item_inner li {
        margin-left: 0.3em;
    }

    .social_item_inner li {
        font-size: 0.5em;
    }

    .menu-tab>:last-child {
        padding-top: 10px;
    }

    .note {
        width: 100%;
        padding: 0.5em;
    }

    .text1 {
        font-size: 1.2em;
    }

    #para {
        font-size: 0.6em;
        text-align: center;
    }




    /* PDF Section============================== */

    .pdf-books {
        padding: 0.5em 1em;
    }

    .book-container {
        width: 100%;
        height: 50vh;
        padding: 0.5em;
    }

    .title h2 {
        font-size: 1em;
    }

    .title h2::after {
        height: 1.5px;
    }

    .book-container iframe {
        border-radius: 0.5em;
        width: 100%;
        height: 35vh;
    }


    .footer {
        padding: 0.5em;
    }

    .row-line {
        height: fit-content;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .row-line p {
        font-size: 1em;
    }

    .row-line h3 {
        font-size: 1.5em;
    }

    .contact_form_inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 0.5em;
    }

    .contact_field {
        padding: 0.5em;
        width: 100%;
    }

    .contact_field input,
    .contact_field textarea,
    .contact_field button {
        width: 100%;
        margin: 0 auto
    }

    .contact_info_sec {
        position: relative;
        padding: 0.2em;
        width: 100%;
    }

    .info_single span {
        font-size: 0.8em;
    }

    .info_single i {
        font-size: 0.8em;
        margin-right: 0.5em;
    }

    .footer-tab li a i {
        font-size: 2em;
    }

    .last {
        display: flex;
        flex-direction: column;
        margin-bottom: 0;
    }

    .last span,
    .last span a {
        text-transform: uppercase;
        font-size: 0.5em;
        box-shadow: none;
    }
}

@media only screen and (min-width:311px) and (max-width:426px) {
    .msg {
        font-size: 1.5em;
        height: fit-content;
    }

    label.hamburger {
        top: 1em;
        right: 1em;
        height: 10px;
        width: 33px;
    }

    label.hamburger>i:before {
        transform: translate(-50%, -10px);
    }

    label.hamburger>i:after {
        transform: translate(-50%, 10px);
    }

    label.hamburger text close,
    label.hamburger text open {
        font-size: 0.4em;
        transform: translateY(20px);
    }

    .drawer-list {
        width: 100%;
        padding-top: 3em;
    }

    .drawer-list li a {
        text-align: end;
        font-size: 1.15em;
    }

    .social_item_inner li {
        margin-left: 0.5em;
    }

    .menu-tab>:last-child {
        padding-top: 20px;
    }

    .note {
        width: 100%;
        padding: 0.5em;
    }

    .text1 {
        font-size: 1.2em;
    }

    #para {
        font-size: 0.6em;
        text-align: center;
    }

    /* PDF Section============================== */

    .pdf-books {
        padding: 0.5em 1em;
    }

    .book-container {
        width: 100%;
        height: 65vh;
        padding: 0.5em;
    }

    .title h2 {
        font-size: 1.3em;
    }

    .title h2::after {
        height: 1.5px;
    }

    .book-container iframe {
        border-radius: 0.5em;
        width: 100%;
        height: 48vh;
    }


    .footer {
        padding: 0.5em;
    }

    .row-line {
        height: fit-content;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .row-line p {
        font-size: 1em;
    }

    .row-line h3 {
        font-size: 1.5em;
    }

    .contact_form_inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 0.5em;
    }

    .contact_field {
        padding: 0.5em;
        width: 100%;
    }

    .contact_field input,
    .contact_field textarea,
    .contact_field button {
        width: 100%;
        margin: 0 auto
    }

    .contact_info_sec {
        position: relative;
        padding: 0.5em;
        width: 100%;
    }

    .info_single span {
        font-size: 0.8em;
    }

    .info_single i {
        font-size: 0.8em;
        margin-right: 1em;
    }

    .footer-tab li a i {
        font-size: 1.2em;
    }

    .last {
        display: flex;
        flex-direction: column;
        margin-bottom: 0;
    }

    .last span,
    .last span a {
        text-transform: uppercase;
        font-size: 0.5em;
        box-shadow: none;
    }
}

@media only screen and (min-width: 426px) and (max-width:597px) {
    .msg {
        font-size: 1.5em;
        height: fit-content;
    }

    label.hamburger {
        top: 1em;
        right: 1.5em;
        height: 10px;
        width: 45px;
    }

    label.hamburger text close,
    label.hamburger text open {
        font-size: 0.5em;
        transform: translateY(30px);
    }

    .drawer-list {
        width: 100%;
        height: 100vh;
    }

    .drawer-list ul {
        margin-top: 1.5em;
    }

    .drawer-list li a {
        font-size: 1em;

    }

    .menu-tab>:last-child {
        padding-top: 25px;
    }

    .note {
        width: 100%;
        padding: 0.5em;
    }

    .text1 {
        font-size: 1.5em;
    }

    #para {
        font-size: 0.6em;
        text-align: center;
    }

    /* PDF Section============================== */

    .pdf-books {
        padding: 0.5em 1em;
    }

    .book-container {
        width: 100%;
        height: 85vh;
        padding: 0.5em;
    }

    .title h2 {
        font-size: 1.5em;
    }

    .title h2::after {
        height: 1.5px;
    }

    .book-container iframe {
        border-radius: 0.5em;
        width: 100%;
        height: 68vh;
    }


    .footer {
        padding: 1em;
    }

    .row-line {
        height: fit-content;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .row-line p {
        font-size: 1em;
    }

    .row-line h3 {
        font-size: 1.5em;
    }

    .contact_form_inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 0.5em;
    }

    .contact_field {
        padding: 0.5em 3em;
        width: 100%;
    }

    .contact_field input,
    .contact_field textarea,
    .contact_field button {
        width: 100%;
        margin: 0 auto
    }

    .contact_info_sec {
        position: relative;
    }

    .info_single span {
        font-size: 0.8em;
    }

    .info_single i {
        font-size: 0.8em;
        margin-right: 1em;
    }

    .last {
        display: flex;
        flex-direction: column;
    }

    .last span,
    .last span a {
        text-transform: uppercase;
        font-size: 0.5rem;
        box-shadow: none;
    }
}

@media only screen and (min-width: 598px) and (max-width:769px) {
    .msg {
        font-size: 1.5em;
        height: fit-content;
    }

    label.hamburger {
        top: 1.5em;
        right: 1.5em;
        height: 10px;
        width: 45px;
    }

    label.hamburger text close,
    label.hamburger text open {
        font-size: 0.5em;
        transform: translateY(30px);
    }

    .drawer-list {
        width: 100%;
        height: 100vh;
    }

    .drawer-list ul {
        margin-top: 1em;
    }

    .drawer-list li a {
        font-size: 1.1em;

    }

    .menu-tab>:last-child {
        padding-top: 25px;
    }

    .note {
        width: 100%;
        padding: 0.5em;
    }

    .text1 {
        font-size: 1.5em;
    }

    #para {
        font-size: 0.6em;
        text-align: center;
    }

    /* PDF Section============================== */

    .pdf-books {
        padding: 0.5em 1em;
    }

    .book-container {
        width: 100%;
        height: 115vh;
        padding: 0.5em;
    }

    .title h2 {
        font-size: 1.5em;
    }

    .title h2::after {
        height: 1.5px;
    }

    .book-container iframe {
        border-radius: 0.5em;
        width: 100%;
        height: 100vh;
    }



    .footer {
        padding: 1em;
    }

    .row-line {
        height: fit-content;
        width: 100%;
        justify-content: center;
        align-items: center;

    }

    .row-line p {
        font-size: 1em;
    }

    .row-line h3 {
        font-size: 1.5em;
    }

    .contact_form_inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 0.5em;
    }

    .contact_field {
        padding: 0.5em 3em;
        width: 100%;
    }

    .contact_field input,
    .contact_field textarea,
    .contact_field button {
        width: 100%;
        margin: 0 auto
    }

    .contact_info_sec {
        position: relative;
    }

    .info_single span {
        font-size: 0.8em;
    }

    .info_single i {
        font-size: 0.8em;
        margin-right: 1em;
    }

    .last {
        display: flex;
        flex-direction: column;
    }

    .last span,
    .last span a {
        text-transform: uppercase;
        font-size: 0.5rem;
        box-shadow: none;
    }
}


@media only screen and (min-width: 769px) and (max-width:1025px) {
    .msg {
        font-size: 1.5em;
        height: fit-content;
    }


    label.hamburger {
        top: 1em;
        right: 1.5em;
        height: 10px;
        width: 45px;
    }

    label.hamburger text close,
    label.hamburger text open {
        font-size: 0.5em;
        transform: translateY(30px);
    }

    .drawer-list {
        width: 60%;
        height: 100vh;
    }

    .drawer-list ul {
        margin-top: 1em;
    }

    .drawer-list li a {
        font-size: 1.1em;
    }

    .container-animation {
        width: 100%;
    }

    .note {
        width: 100%;
        padding: 0.5em;
    }

    .text1 {
        font-size: 1.5em;
    }

    #para {
        font-size: 0.6em;
        text-align: center;
    }


    /* PDF Section============================== */

    .pdf-books {
        padding: 0.5em 2em;
    }

    .book-container {
        width: 100%;
        height: 120vh;
        padding: 1em;
    }

    .title h2 {
        font-size: 1.5em;
    }

    .title h2::after {
        height: 2px;
    }

    .book-container iframe {
        border-radius: 0.5em;
        width: 100%;
        height: 100vh;
    }


    .footer {
        padding: 1em;
    }

    .row-line {
        justify-content: space-between;
        padding-top: 1em;
    }

    .row-line p {
        font-size: 1em;
    }

    .row-line h3 {
        font-size: 1.7em;
    }

    .contact_info_sec {
        position: relative;
        width: 45%;
        padding: 0.2em;
        margin-top: 2.5em;
        height: fit-content;
    }

    .contact_info_sec h4 {
        font-size: 1.3em;
        margin-top: 1em;
        text-shadow: 0.5px 0.5px #000;
    }

    .info_single {
        margin: 1em 0;
        text-shadow: 0.5px 0.5px #000;
    }

    .info_single span {
        font-size: 0.8em;
        text-shadow: 0.5px 0.5px #000;
    }

    .last span {
        font-size: 0.7em;
        margin-bottom: 1em;
    }
}

@media only screen and (min-width: 1441px) and (max-width:2561px) {
    .msg {
        height: fit-content;
    }

    .container-animation span {
        font-size: 4em;
    }

    .front-face p {
        font-size: 1.5em;
    }

    label.hamburger {
        margin-top: 2em;
        right: 2em;
        height: 1em;
        width: 3em;
    }

    label.hamburger>i,
    label.hamburger>i:before,
    label.hamburger>i:after {
        height: 5px;
    }

    label.hamburger>i:before {
        transform: translate(-50%, -25px);
    }

    label.hamburger>i:after {
        transform: translate(-50%, 25px);
    }

    label.hamburger text close,
    label.hamburger text open {
        transform: translateY(60px);
        font-size: 1em;
    }

    .drawer-list {
        width: 60%;
        height: 100vh;
    }

    .drawer-list ul {
        margin-top: 4em;
    }


    .drawer-list li a {
        font-size: 2em;
    }

    .menu-tab li a {
        font-size: 0.8em;
    }


    .note {
        width: 100%;
        padding: 2em;
    }

    .text1 {
        font-size: 3.5em;
    }

    #para {
        font-size: 1.8em;
        text-align: center;
    }


    /* PDF Section============================== */

    .pdf-books {
        padding: 0.5em 4em;
    }

    .book-container {
        width: 100%;
        height: 68vh;
        padding: 1em 14em;
    }

    .title h2 {
        font-size: 3.5em;
    }

    .title h2::after {
        height: 5px;
    }

    .book-container iframe {
        border-radius: 0.5em;
        width: 100%;
        height: 50vh;
    }



    .row-line h3 {
        font-size: 5em;
    }

    .row-line p {
        font-size: 3em;
    }

    .contact_form_inner {
        padding: 1em 0.5em;
    }

    .contact_field input,
    .contact_field textarea {
        margin-top: 2em;
    }

    .contact_field textarea {
        padding-bottom: 1.5em;
        border-bottom: 3px solid #ccc;
    }

    .contact_field button {
        margin-top: 1em;
    }

    .contact_field .form-control {
        padding-top: 3em;
        border-bottom: 3px solid #ccc;
    }

    .contact_field:focus .form-control:focus {
        padding-bottom: 2em;
        border-bottom: 2px solid #00ff73;
    }

    .contact_field .form-control::placeholder {
        font-size: 3em;
    }

    button.contact_form_submit {
        font-size: 2em;
    }

    .contact_info_sec {
        width: 40%;
        height: auto;
        font-size: 2em;
        padding: 1.5em 1em;
    }

    .contact_info_sec h4 {
        font-size: 2em;
    }

    .social_item_inner {
        height: 5em;

    }

    .social_item_inner li a i {
        font-size: 3.5em;
    }

    .last>span {
        font-size: 1.5em;
    }

    .last span a {
        text-decoration: none;
        color: #e5ff00;
    }
}